home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / emulator / bsvc-1.000 / bsvc-1 / bsvc-1.0.4 / src / Sim68000 / devices / RAM.hxx < prev    next >
Text File  |  1995-07-26  |  2KB  |  70 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. // $Id: RAM.hxx,v 1.2 1995/01/13 00:31:06 bmott Exp $
  3. ///////////////////////////////////////////////////////////////////////////////
  4. // RAM.hxx 
  5. //
  6. // The Random Access Memory Device
  7. //
  8. // Sim68000 "Motorola 68000 Simulator"
  9. // Copyright (c) 1993
  10. // By: Bradford W. Mott
  11. // July 26,1993
  12. //
  13. ///////////////////////////////////////////////////////////////////////////////
  14. // $Log: RAM.hxx,v $
  15. // Revision 1.2  1995/01/13  00:31:06  bmott
  16. // Remove the inline prefix from several member functions that shouldn't
  17. // have been inlined
  18. //
  19. // Revision 1.1  1994/02/18  20:12:36  bmott
  20. // Initial revision
  21. //
  22. ///////////////////////////////////////////////////////////////////////////////
  23.  
  24. #ifndef RAM_HXX
  25. #define RAM_HXX
  26.  
  27. #include <iostream.h>
  28. #include "String.h"
  29.  
  30. #include "BasicDevice.hxx"
  31.  
  32. class RAM : public BasicDevice {
  33.   private:
  34.     unsigned long base_address;         // Starting address
  35.     unsigned long size;                 // Size in bytes
  36.  
  37.   protected:
  38.     unsigned char *buffer;              // Buffer to hold the RAM's contents
  39.  
  40.   public:
  41.     RAM(String args, BasicCPU* cpu);
  42.  
  43.     ~RAM();
  44.  
  45.     // See if the address maps into the device (1=Yes,0=No)
  46.     char CheckMapped(unsigned long addr);
  47.  
  48.     // Return the lowest address used by the device
  49.     virtual unsigned long LowestAddress()
  50.     { return(base_address); }
  51.  
  52.     // Return the highest address used by the device
  53.     virtual unsigned long HighestAddress()
  54.     { return(base_address+size-1); }
  55.  
  56.     // Get a byte from the device
  57.     virtual unsigned char Peek(unsigned long addr)
  58.     { return (buffer[addr-base_address]); }
  59.  
  60.     // Put a byte into the device
  61.     virtual void Poke(unsigned long addr, unsigned char c) 
  62.     { buffer[addr-base_address]=c; }
  63.  
  64.     // RAM never has Events
  65.     void EventCallback(long, void*)
  66.     {}
  67. };
  68.  
  69. #endif
  70.